home *** CD-ROM | disk | FTP | other *** search
/ IRIX Patches 1995 March / SGI IRIX Patches 1995 Mar.iso / relnotes / patchSG0000244 / ch1.z / ch1
Text File  |  1995-03-10  |  9KB  |  265 lines

  1.  
  2.  
  3.  
  4.                                   - 1 -
  5.  
  6.  
  7.  
  8.        1.  _P_a_t_c_h__S_G_0_0_0_0_2_4_4__R_e_l_e_a_s_e__N_o_t_e
  9.  
  10.        This release note describes patch SG0000244 to IRIX 5.3.
  11.  
  12.        1.1  _S_u_p_p_o_r_t_e_d__H_a_r_d_w_a_r_e__P_l_a_t_f_o_r_m_s
  13.  
  14.        This patch contains bug fixes for all Indy, Indigo2 and
  15.        Challenge-S platforms.  The software cannot be installed on
  16.        other configurations.
  17.  
  18.        1.2  _S_u_p_p_o_r_t_e_d__S_o_f_t_w_a_r_e__P_l_a_t_f_o_r_m_s
  19.  
  20.        This patch contains bug fixes for IRIX 5.3.  The software
  21.        cannot be installed on other configurations.
  22.  
  23.        1.3  _B_u_g_s__F_i_x_e_d__b_y__P_a_t_c_h__S_G_0_0_0_0_2_4_4
  24.  
  25.        This patch contains fixes for the following bugs in IRIX
  26.        5.3.  Bug numbers from Silicon Graphics bug tracking system
  27.        are included for reference.
  28.  
  29.           +o Changes were put into the kernel which allow the kernel
  30.             stack to be increased by an additional page for real-
  31.             time processes and otherwise on an as-needed basis.
  32.             This increases the reliability of the system by
  33.             eliminating scenarios in which the kernel stack might
  34.             overflow and panic the system (bug #240710).
  35.  
  36.           +o 133Mhz R4600SC loses time at about 30 seconds/day (Bug
  37.             #253937).  Fix causes hinv to report CPU speed as
  38.             132Mhz.  Previously hinv would report an incorrect CPU
  39.             speed of 134Mhz.
  40.  
  41.           +o An Indy or Challenge S would panic after a power
  42.             failure warning.  This was generally the result of a
  43.             temporary power brown out (bug #249413).
  44.  
  45.           +o When an Indy or Challenge S encountered a bad kernel
  46.             memory reference, it would sometimes hang
  47.             uninterruptably (so that even the power switch would
  48.             not work) (bug #254936).
  49.  
  50.           +o Kernel paniced at chunk_insert when a large chunk of
  51.             memory was returned back to the system.  This was
  52.             caused when a region of user memory grew large enough
  53.             to require a multi-level chunk tree, and the user
  54.             program did a "shrink" via sbreak, and the shrink
  55.             happened to occur on certain boundaries that were
  56.             significant to the anon chunk management code.  This
  57.             was possible to hang the process or crash the system
  58.             (bug #250249, #255268).
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.                                   - 2 -
  71.  
  72.  
  73.  
  74.           +o This patch fixes a problem which arose when programs
  75.             were execed by pre-loading all their text. In such a
  76.             situation the lack of coherency between the instruction
  77.             and data caches was not accounted for and the results
  78.             were not reliable. This now works correctly (bug
  79.             249652).
  80.  
  81.           +o A race condition exists between a process exiting and
  82.             looking at that same process's credentials using the
  83.             /proc interface. The /proc interface attempts to look
  84.             at process's credentials after releasing a lock on the
  85.             process entry. If the process exits within a few
  86.             instructions the lock being released, then the /proc
  87.             support can use an invalid pointer and panic the
  88.             system. The solution in this patch holds the process
  89.             entry locked until all credential information is copied
  90.             (bug 249685).
  91.  
  92.           +o It is possible for the system to loop forever printing
  93.             the message "CPU x WARNING:tlbmiss: invalid badvaddr
  94.             XXX". This could happen if there is an invalid
  95.             reference in the kernel to kernel heap space. When this
  96.             situation arose the system would have to be forcibly
  97.             rebooted. The kernel has now been corrected to panic
  98.             whenever such a situation arises so that the errant
  99.             code can be isolated (bugs 189291, 251742).
  100.  
  101.           +o Kernel multi-access, single-update locks are fixed in
  102.             this patch to work properly for single-processor
  103.             systems (bug 254554).
  104.  
  105.           +o A special case file-system buffer cache bug could
  106.             produce an incorrect buffer page list.  This now works
  107.             correctly (bug 257730).
  108.  
  109.           +o The logical volume driver has a race condition between
  110.             the "open" and "ioctl" entry points. This patch
  111.             includes a fix that serializes opens and ioctls on
  112.             logical volumes. This fixes problems encountered by
  113.             running multiple mklv commands on the same LV at the
  114.             same time (bug 250334).
  115.  
  116.           +o There is a small race condition that can cause the
  117.             kernel to get a segmentation violation with a NULL
  118.             pointer.  This can happen in special cases that can
  119.             occur when the following conditions simultaneously
  120.             happen: (1) the kernel tries to page out pages from a
  121.             process's data or bss, (2) this is after the data has
  122.             been modified by the debugger (or in other cases that
  123.             cause the data or bss to be shared between multiple
  124.             processes), and (3) the process then shrinks its bss
  125.  
  126.  
  127.  
  128.  
  129.  
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136.                                   - 3 -
  137.  
  138.  
  139.  
  140.             segment with either the brk or sbrk system calls while
  141.             the paging I/O is in progress for the pages being
  142.             affected by the brk or sbrk call.  This now works
  143.             correctly (bug 255378).
  144.  
  145.           +o A bug in the getdents system call would cause a system
  146.             crash if a zero-length request was passed to getdents.
  147.             This case is now fixed to return EINVAL (bug 255067).
  148.  
  149.        1.4  _S_u_b_s_y_s_t_e_m_s__I_n_c_l_u_d_e_d__i_n__P_a_t_c_h__S_G_0_0_0_0_2_4_4
  150.  
  151.        This patch release includes these subsystems:
  152.  
  153.           +o patchSG0000244.eoe1_sw.unix
  154.  
  155.  
  156.        1.5  _I_n_s_t_a_l_l_a_t_i_o_n__I_n_s_t_r_u_c_t_i_o_n_s
  157.  
  158.        Because you want to install patches for only the problems
  159.        you have encountered, patch software is not installed by
  160.        default. After reading the descriptions of the bugs fixed in
  161.        this patch, determine the patches that meet your specific
  162.        needs.
  163.  
  164.        Patch software is installed like any other Silicon Graphics
  165.        software product.  Follow the instructions in your _I_R_I_S
  166.        _S_o_f_t_w_a_r_e _I_n_s_t_a_l_l_a_t_i_o_n _G_u_i_d_e to bring up the miniroot form of
  167.        the software installation tools.
  168.  
  169.        Follow these steps to select a patch for installation:
  170.  
  171.          1.  At the Inst>prompt, type
  172.  
  173.              iiiinnnnssssttttaaaallllllll ppppaaaattttcccchhhhSSSSGGGG_x_x_x_x_x_x_x
  174.  
  175.              where _x_x_x_x_x_x_x is the patch number.
  176.  
  177.          2.  Select the desired patches for installation.
  178.  
  179.          3.  Initiate the installation sequence. Type
  180.  
  181.              IIIInnnnsssstttt>>>> ggggoooo
  182.  
  183.          4.  You may find that two patches have been marked as
  184.              incompatible.  If this occurs, you must deselect one
  185.              of the patches.
  186.  
  187.              IIIInnnnsssstttt>>>> kkkkeeeeeeeepppp ppppaaaattttcccchhhhSSSSGGGG_x_x_x_x_x_x_x
  188.  
  189.              where _x_x_x_x_x_x_x is the patch number.
  190.  
  191.  
  192.  
  193.  
  194.  
  195.  
  196.  
  197.  
  198.  
  199.  
  200.  
  201.  
  202.                                   - 4 -
  203.  
  204.  
  205.  
  206.          5.  After completing the installation process, exit the
  207.              _i_n_s_t program by typing
  208.  
  209.              IIIInnnnsssstttt>>>> qqqquuuuiiiitttt
  210.  
  211.  
  212.        To remove a patch, use the _v_e_r_s_i_o_n_s _r_e_m_o_v_e command as you
  213.        would for any other software subsystem.  The removal process
  214.        reinstates the original version of software unless you have
  215.        specifically removed the patch history from your system.
  216.  
  217.        vvvveeeerrrrssssiiiioooonnnnssss rrrreeeemmmmoooovvvveeee ppppaaaattttcccchhhhSSSSGGGG_x_x_x_x_x_x_x
  218.  
  219.        where _x_x_x_x_x_x_x is the patch number.
  220.  
  221.        To keep a patch but increase your disk space, use the
  222.        _v_e_r_s_i_o_n_s _r_e_m_o_v_e_h_i_s_t command to remove the patch history.
  223.  
  224.        vvvveeeerrrrssssiiiioooonnnnssss rrrreeeemmmmoooovvvveeeehhhhiiiisssstttt ppppaaaattttcccchhhhSSSSGGGG_x_x_x_x_x_x_x
  225.  
  226.        where _x_x_x_x_x_x_x is the patch number.
  227.  
  228.  
  229.  
  230.  
  231.  
  232.  
  233.  
  234.  
  235.  
  236.  
  237.  
  238.  
  239.  
  240.  
  241.  
  242.  
  243.  
  244.  
  245.  
  246.  
  247.  
  248.  
  249.  
  250.  
  251.  
  252.  
  253.  
  254.  
  255.  
  256.  
  257.  
  258.  
  259.  
  260.  
  261.  
  262.  
  263.  
  264.  
  265.